Micron Document
baubs git

Node / mirrors / respira / files / src / components / WorkflowStepper / StepLabel.tsx

Displaying Raw • Download

src/components/WorkflowStepper/StepLabel.tsx fix/konva-canvas-performance-optimization (9d30eae9) Text, 648 B

/**
* StepLabel Component
*
* Renders the text label below each step circle
*/

export interface StepLabelProps {
label: string;
isCurrent: boolean;
isComplete: boolean;
}

export function StepLabel({ label, isCurrent, isComplete }: StepLabelProps) {
return (
<div className="mt-1 lg:mt-2 text-center">
<div
className={\\`text-xs font-semibold leading-tight ${
isCurrent
? "text-white"
: isComplete
? "text-success-200 dark:text-success-300"
: "text-primary-300/70 dark:text-primary-400/70"
}\\`}
>
{label}
</div>
</div>
);
}

Served by rngit 1.3.3 - Generated in 0.03s